home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / progjrn / pj_7_2.arc / WINDEV1.ARC / SMLTPL.DEF < prev    next >
Text File  |  1988-12-04  |  555b  |  30 lines

  1. ; Definitions file for the Windows small model template
  2. ;
  3. ; Written by Bill Hall, Olivetti ATC
  4. ;
  5.  
  6. ; Program name
  7. NAME    Smltpl
  8.  
  9. ; Description string
  10. DESCRIPTION 'Windows small memory model template'
  11.  
  12. ; Program to run if run from MS-DOS
  13. STUB 'Winstub.exe'
  14.  
  15. ; Heap and stack sizes
  16. HEAPSIZE    1024
  17. STACKSIZE    4096
  18.  
  19. ; Attributes of code and data segments
  20. CODE    MOVEABLE
  21. DATA    MOVEABLE MULTIPLE
  22.  
  23. ; Attributs of particular segments
  24. SEGMENTS
  25.     _INIT PRELOAD MOVEABLE DISCARDABLE
  26.  
  27. ; Functions called by Windows
  28. EXPORTS
  29.     MainWndProc    @1
  30.